home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / dbase / techs.zip / TECH2.ZIP / READ.ME < prev   
Text File  |  1980-01-01  |  1KB  |  32 lines

  1. PROGRAM NAME: Bargraph.PRG 
  2.  
  3. DESCRIPTION:  Generates bar graphs in dBASE II.
  4.  
  5. ISSUE: August, 1985
  6. PAGE:  10
  7.  
  8. SOFTWARE VERSIONS:  dBASE II, any version
  9.  
  10. FUNCTION:  Bargraph.PRG integrates information from a database
  11. file to produce a vertical bar graph of monthly accounts
  12. receivable and accounts payable data from Accounts.DBF.  It also
  13. demonstrates an array simulation technique. 
  14.  
  15.  
  16. FILES NEEDED: Bargraph.PRG
  17.               Accounts.DBF
  18.         
  19. SETUP INSTRUCTIONS: the program can be run by creating the
  20. database, Accounts.DBF, with the following structure:
  21.  
  22.            Field  Field name  Type       Width    Dec
  23.                1  Accttype    Character      1
  24.                2  Month       Numeric        2
  25.                3  Amount      Numeric        6 
  26.  
  27. If you wish to modify te program for uour own applications,
  28. change the field names to those of your own.  To run the program,
  29. type DO Bargraph.  To print the results, press Shift-PrtSc, and
  30. your screen will dump to the printer.
  31.  
  32.